home *** CD-ROM | disk | FTP | other *** search
/ Aminet 16 / Aminet 16 (1996)(GTI - Schatztruhe)[!][Dec 1996].iso / Aminet / comm / bbs / dCN_LV10.lha / Install dCN!ViewLog v1.o < prev    next >
Text File  |  1996-10-04  |  3KB  |  82 lines

  1. ;dCN!ViewLog v1.o Installer Utility
  2. ;(c) 1996 by sCANDiC (dCN-/F·dEZiGN)
  3.  
  4. ;$VER: dCN!ViewLog Install 1.o (04.10.96)
  5.  
  6. (set @default-dest "FAME:Doors/dCN!ViewLog")
  7.  
  8. (welcome #welcometext)
  9.  
  10. (set #turboprozessor (not (patmatch (database "cpu") "68000|68010")))
  11.  
  12.  
  13. (if (= @language "deutsch")
  14.   (
  15.    (set #welcometext     "Willkommen zum Installationsprogramm für\n\n")
  16.    (set #welcomedesc     "Mit diesem Programm läßt sich die Installation von dCN!ViewLog sehr einfach durchführen. Alle Dateien werden installiert und evtl. Änderungen an den Systemdateien vorgenommen.")
  17.    (set #wrongversion    "Leider ist ihr AmigaOS© veraltet!\n\nSie benötigen mindestens AmigaOS 2.04 (v37).")
  18.    (set #copyinfotext    "Eine komplette Installation des FAME Mailbox System ist notwendig für die Installation dieses Programmes.")
  19.    (set #nofameinstalled "Sie haben das FAME Mailboy System nicht oder nicht vollständig installiert!\nDie Installation wird abgebrochen.")
  20.    (set #copyfiles       "Kopiere die benötigten Datenfiles nach FAME:Doors/")
  21.    (set #fastprocessor   "Kopiere die 68020+ Versionen der Programme.")
  22.    (set #slowprocessor   "Kopiere die 68000 Versionen der Programme.")
  23.   )
  24.  
  25.   (
  26.    (set #welcometext     "Welcome to the Installation utilitty for\n\n")
  27.    (set #welcomedesc     "The installation of this program by using this program is really easy. It will copy all files to the right places an also replaces the needed systemfiles.")
  28.    (set #wrongversion    "Sorry! Your OS is too old!\n\nYou have to use a minimum of OS2.04 (v36).")
  29.    (set #copyinfotext    "This tool needs a complete FAME installation!.")
  30.    (set #nofameinstalled "There is no complete FAME installation!!\nThe installation aborts!.")
  31.    (set #copyfiles       "Copy needed files to FAME:Doors/")
  32.    (set #fastprocessor   "About to copy the 68020+ versions of the doors.")
  33.    (set #slowprocessor   "About to copy the 68000 versions of the doors.")
  34.   )
  35. )
  36.  
  37.  
  38. (message #welcomedesc)
  39.  
  40. (set #osversion (/ (getversion "exec.library" (resident)) 65536 ))
  41. (if (< #osversion 36 )
  42.   (exit #wrongosversion (quiet))
  43. )
  44. (complete 0)
  45. (if (not (exists "FAME:Doors/"))
  46.  
  47.  (
  48.   (abort #nofameinstalled)
  49.  )
  50.  
  51. )
  52. (complete 10)
  53. (makedir "FAME:Doors/dCN!ViewLog" (infos))
  54.  
  55.    (message #copyfiles)
  56.  
  57.    (copyfiles (source "FAME/Settings/Doors/bbscmd/2") (dest "FAME:Settings/Doors/bbscmd/"))
  58.    (copyfiles (source "FAME/Doors/dCN!ViewLog/dCN!ViewLog.guide") (dest "FAME:Doors/dCN!ViewLog/"))
  59.    (copyfiles (source "FAME/Doors/dCN!ViewLog/dCN!ViewLog.guide.info") (dest "FAME:Doors/dCN!ViewLog/"))
  60.  
  61.    
  62. (complete 50)
  63.  
  64.   (if #turboprozessor
  65.      (
  66.      (message #fastprocessor)
  67.  
  68.      (copyfiles (source "FAME/Doors/dCN!ViewLog/dCN!ViewLog.FIM.020+") (dest "FAME:Doors/dCN!ViewLog/") (newname "dCN!ViewLog.FIM"))
  69.  
  70.      )
  71.  
  72.      (
  73.      (message #slowprocessor)
  74.  
  75.      (copyfiles (source "FAME/Doors/dCN!ViewLog/dCN!ViewLog.FIM.000") (dest "FAME:Doors/dCN!ViewLog/") (newname "dCN!ViewLog.FIM"))
  76.  
  77.      )
  78.   )
  79.  
  80. (complete 100)
  81.  
  82.